home *** CD-ROM | disk | FTP | other *** search
/ Aminet 7 / Aminet 7 - August 1995.iso / Aminet / text / hyper / XPKGuide.lha / XPKGuide / Install < prev    next >
Encoding:
Text File  |  1995-05-17  |  2.3 KB  |  88 lines

  1. (set @default-dest (askdir (prompt "Where do you want to put the XPKGuide program")
  2.                (help @askdir-help)
  3.                (default "SYS:Utilities")
  4. ))
  5. (copylib (prompt "Copying XPKGuide")
  6.      (help @copylib-help)
  7.      (source "XPKGuide")
  8.      (dest @default-dest)
  9.      (infos)
  10.      (optional oknodelete askuser)
  11. )
  12. (tooltype (prompt "Floating XPKGuides icon")
  13.       (help "")
  14.       (dest (tackon @default-dest "XPKGuide"))
  15.       (noposition)
  16. )
  17. (if (= 1 (askbool (prompt "Do you want to install the preferences program?")
  18.           (help @askbool-help)
  19.           (default 1)))
  20.   (
  21.     (set prefdrawer (askdir (prompt "Where do you want to install XPKGuidePrefs?")
  22.                 (help @askdir-help)
  23.                 (default "SYS:Prefs")))
  24.     (copylib (prompt "Copying XPKGuidePrefs")
  25.          (help @copylib-help)
  26.          (source "XPKGuidePrefs")
  27.          (dest prefdrawer)
  28.          (infos)
  29.     )
  30.     (tooltype (prompt "Floating XPKGuidePrefs icon")
  31.           (help "")
  32.           (dest (tackon prefdrawer "XPKGuidePrefs"))
  33.           (noposition)
  34.     )
  35.   )
  36. )
  37. (if (= 1 (askbool (prompt "Do you want to install XPKGuides AmigaGuide manual?")
  38.           (help @askbool-help)
  39.           (default 1)))
  40.   (
  41.     (set guidedrawer (askdir (prompt "Where do you want to install XPKGuide.guide")
  42.                 (help @askdir-help)
  43.                 (default @default-dest)))
  44.     (copylib (prompt "Copying XPKGuide.guide")
  45.          (help @copylib-help)
  46.          (source "XPKGuide.guide")
  47.          (dest guidedrawer)
  48.          (infos)
  49.     )
  50.     (tooltype (prompt "Floating XPKGuide.guide icon")
  51.           (help "")
  52.           (dest (tackon guidedrawer "XPKGuide.guide"))
  53.           (noposition)
  54.     )
  55.   )
  56. )
  57. (copylib (prompt "Copying xpkmaster.library")
  58.      (help @copylib-help)
  59.      (source "libs/xpkmaster.library")
  60.      (dest "LIBS:")
  61.      (optional oknodelete askuser)
  62. )
  63. (copylib (prompt "Copying powerpacker.library")
  64.      (help @copylib-help)
  65.      (source "libs/powerpacker.library")
  66.      (dest "LIBS:")
  67.      (optional oknodelete askuser)
  68. )
  69. (copylib (prompt "Copying lh.library")
  70.      (help @copylib-help)
  71.      (source "libs/lh.library")
  72.      (dest "LIBS:")
  73.      (optional oknodelete askuser)
  74. )
  75. (copylib (prompt "Copying xfdmaster.library")
  76.      (help @copylib-help)
  77.      (source "libs/xfdmaster.library")
  78.      (dest "LIBS:")
  79.      (optional oknodelete askuser)
  80. )
  81. (copyfiles (prompt "Copying XFD external decrunchers")
  82.        (help @copyfiles-help)
  83.        (source "libs/xfd")
  84.        (dest "LIBS:xfd")
  85.        (all)
  86.        (optional oknodelete askuser)
  87. )
  88.